home *** CD-ROM | disk | FTP | other *** search
/ Cream of the Crop 3 / Cream of the Crop 3.iso / utility / ffg155.zip / UTIL_BAT.ZIP / DELBAK.BAT < prev    next >
DOS Batch File  |  1993-06-25  |  390b  |  15 lines

  1. @echo off
  2. cls
  3. echo Here all .BAK files will be found and deleted.  You will be asked to confirm
  4. echo each file deletion.
  5. echo.
  6. echo Press any key to begin searching...
  7. pause >nul
  8. REM Note use of double %% below.  Double %% are used instead of single % in
  9. REM batch files.
  10. echo on
  11. ffg *:*.bak /eDEL%%_%%n
  12. @echo off
  13. echo Done.  Press any key for next demonstration...
  14. pause>nul
  15.